home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / hf^k-3.dms / in.adf / C-Incl.Lha / math.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-13  |  819 b   |  48 lines

  1. #ifndef _INCLUDE_MATH_H
  2. #define _INCLUDE_MATH_H
  3.  
  4. /*
  5. **  $VER: math.h 1.1 (13.6.96)
  6. **  StormC Release 1.1
  7. **
  8. **  '(C) Copyright 1995/96 Haage & Partner Computer GmbH'
  9. **     All Rights Reserved
  10. */
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. #ifndef PI
  17. #define PI 3.141592653589
  18. #endif
  19.  
  20. double sin(double);
  21. double cos(double);
  22. double tan(double);
  23. double asin(double);
  24. double acos(double);
  25. double atan(double);
  26. double atan2(double, double);
  27. double sinh(double);
  28. double cosh(double);
  29. double tanh(double);
  30. double exp(double);
  31. double log(double);
  32. double log10(double);
  33. double pow(double,double);
  34. double sqrt(double);
  35. double ceil(double);
  36. double floor(double);
  37. double fabs(double);
  38. double ldexp(double,int);
  39. double frexp(double,int *);
  40. double modf(double,double *);
  41. double fmod(double,double);
  42.  
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46.  
  47. #endif
  48.